home *** CD-ROM | disk | FTP | other *** search
/ Light ROM 1 / LIGHT-ROM 1 (Amiga Library Services)(1994).iso / ffdisks / d936.lha / TKEd / Help / TKEd_ARexx.e < prev   
Text File  |  1993-12-20  |  23KB  |  968 lines

  1. ***
  2. New
  3. Name          :  New
  4.  
  5. Function      :  Clears all the text 
  6. Parameters    :  No parameter
  7. Returnvalue   :  Nothing
  8.  
  9. ***
  10. Open
  11. Name          :  Open
  12.  
  13. Function      :  Loads a text
  14. Parameters    :  Name of the text (No parameter: opens a filerequester)
  15. Returnvalue   :  Name of the text, if successful, else 10
  16.  
  17. ***
  18. Save
  19. Name          :  Save
  20.  
  21. Function      :  Saves a text
  22. Parameters    :  No parameter
  23. Returnvalue   :  0 if successful, else 10
  24.  
  25. ***
  26. SaveAs
  27. Name          :  SaveAs
  28.  
  29. Function      :  Saves a text with a new name (the loaded text keeps his 
  30.                  name)
  31. Parameters    :  1:New name of the text
  32. Returnvalue   :  New name, if successful, else 10
  33.  
  34. ***
  35. Print
  36. Name          :  Print
  37.  
  38. Function      :  Sends the text to the printer
  39. Parameters    :  Rückgabewer
  40. Returnvalue   :  0 if successful, else 10
  41.  
  42. ***
  43. InsertFile
  44. Name          :  InsertFile
  45.  
  46. Function      :  Inserts a text
  47. Parameters    :  Name of the text
  48. Returnvalue   :  Name of the inserted text, if successful, else 10
  49.  
  50. ***
  51. SaveAllAndQuit
  52. Name          :  SaveAllAndQuit
  53.  
  54. Function      :  Saves all modified buffers and quits TKEd
  55. Parameters    :  No parameter
  56. Returnvalue   :  Nothing
  57.  
  58. ***
  59. SaveAndQuit
  60. Name          :  SaveAndQuit
  61.  
  62. Function      :  Saves a text and quits TKEd
  63. Parameters    :  No parameter
  64. Returnvalue   :  0 if successful, else 10
  65.  
  66. ***
  67. Quit
  68. Name          :  Quit
  69.  
  70. Function      :  Quit TKEd
  71. Parameters    :  No parameter (FORCE suppresses the Modified requester)
  72. Returnvalue   :  Nothing
  73.  
  74. ***
  75. Indent
  76. Name          :  Indent
  77.  
  78. Function      :  Switches indent on/off
  79. Parameters    :  ON, to switch on, anything else will switch off
  80. Returnvalue   :  Nothing
  81.           
  82. ***
  83. AutoBackup
  84. Name          :  AutoBackup
  85.  
  86. Function      :  Switches autobackup on/off
  87. Parameters    :  ON, to switch on, anything else will switch off
  88. Returnvalue   :  Nothing
  89.           
  90. ***
  91. SetCase
  92. Name          : SetCase
  93.  
  94. Function      : Changes search-options
  95. Parameter     : "CASE", if UPPER # lower
  96.                 "NOCASE", if UPPER = lower
  97. Returnvalue   : The values before calling SetCase ("CASE" or "NOCASE")
  98.  
  99. ***
  100. VersionBackup
  101. Name          :  VersionBackup
  102.  
  103. Function      :  Switches versionbackup on/off
  104. Parameters    :  ON, to switch on, anything else will switch off
  105. Returnvalue   :  Nothing
  106.  
  107. ***
  108. SetExtension
  109. Name          :  SetExtension
  110.  
  111. Function      :  Changes the extension of Backups
  112. Parameters    :  String with the extension (up to 10 characters)
  113. Returnvalue   :  Nothing
  114.  
  115. ***
  116. Find
  117. Name          :  Find
  118.  
  119. Function      :  Searches a word in the text (forward)
  120. Parameters    :  word to search for (No parameter: opens a textrequester)
  121. Returnvalue   :  0 if found, else 10
  122.  
  123. ***
  124. FindBack
  125. Name          :  FindBack
  126.  
  127. Function      :  Searches a word in the text (backward)
  128. Parameters    :  word to search for (No parameter: opens a textrequester)
  129. Returnvalue   :  0 if found, else 10
  130.  
  131. ***
  132. FindNext
  133. Name          :  FindNext
  134.  
  135. Function      :  Searches next occurrence of the word
  136. Parameters    :  No parameters
  137. Returnvalue   :  0 if found, else 10
  138.  
  139. ***
  140. FindPrevious
  141. Name          :  FindPrevious
  142.  
  143. Function      :  Searches previous occurrence of the word
  144. Parameters    :  No parameters
  145. Returnvalue   :  0 if found, else 10
  146.  
  147. ***
  148. FindChange
  149. Name          :  FindChange
  150.  
  151. Function      :  Searches for the next occurrence of a word and replaces it 
  152.                  with another
  153. Parameters    :  1:Word to search for  2:Replacing word (no parameter: 
  154.                  opens a textrequester)
  155. Returnvalue   :  0 if possible, else 10
  156.  
  157. ***
  158. ChangeNext
  159. Name          :  ChangeNext
  160.  
  161. Function      :  Searches for the next occurrence of a word and replaces it 
  162.                  with another one
  163. Parameters    :  No parameters
  164. Returnvalue   :  0 if possible, else 10
  165.  
  166. ***
  167. ChangePrevious
  168. Name          :  ChangePrevious
  169.  
  170. Function      :  Searches for the previous occurrence of a word and replaces 
  171.                  it with another one
  172. Parameters    :  No parameters
  173. Returnvalue   :  0 if possible, else 10
  174.      
  175. ***
  176. ChangeAll
  177. Name          :  ChangeAll
  178.  
  179. Function      :  Replaces all occurrences of a word with another
  180. Parameters    :  1:Word to search for   2:Replacing word
  181. Returnvalue   :  Nothing
  182.  
  183. ***
  184. CountOccurrences
  185. Name          :  CountOccurrences
  186.  
  187. Function      :  Counts all occurrences of a word in a text
  188. Parameters    :  1:word
  189. Returnvalue   :  Number of occurrences
  190.      
  191. ***
  192. MatchingBracket
  193. Name          :  MatchingBracket
  194.  
  195. Function      :  See menu 'Matching Bracket'
  196. Parameters    :  No parameters
  197. Returnvalue   :  0 if matching bracket found, else 10
  198.  
  199. ***
  200. SetFind
  201. Name          : SetFind
  202.  
  203. Function      : Set the word to search for
  204. Parameter     : Word to search for
  205. Returnvalue   : Nothing
  206.  
  207. ***
  208. SetReplace
  209.  
  210. Name          : SetReplace
  211.  
  212. Function      : Set the replacing word 
  213. Parameter     : Replacing word
  214. Returnvalue   : Nothing
  215.  
  216. ***
  217. GotoBookMark
  218. Name          :  GotoBookMark
  219.  
  220. Function      :  Goes to the mark
  221. Parameters    :  Number of the mark (0..9)
  222. Returnvalue   :  0 if successful, else 10
  223.      
  224. ***
  225. SetBookMark
  226. Name          :  SetBookMark
  227.  
  228. Function      :  Sets a new mark
  229. Parameters    :  Number of the new mark (0..9)
  230. Returnvalue   :  0 if successful, else 10
  231.      
  232. ***
  233. ClearBookMark
  234. Name          :  ClearBookMark
  235.  
  236. Function      :  Clears a mark
  237. Parameters    :  Number of the mark (0..9)
  238. Returnvalue   :  0 if successful, else 10
  239.  
  240. ***
  241. Mark
  242. Name          :  Mark
  243.  
  244. Function      :  Marks start of a block
  245. Parameters    :  No parameters
  246. Returnvalue   :  Nothing
  247.  
  248. ***
  249. MarkVertical1
  250. Name          :  MarkVertical1
  251.  
  252. Function      :  Marks the left end of a vertical block
  253. Parameters    :  Cursorposition of the left end (0..length of the line)
  254. Returnvalue   :  0 if possible, else 10
  255.  
  256. ***
  257. MarkVertical2
  258. Name          :  MarkVertical2
  259.  
  260. Function      :  Marks the right end of a vertical block
  261. Parameters    :  Cursorposition of the right end (0..length of the line)
  262. Returnvalue   :  0 if possible, else 10
  263.  
  264. ***
  265. MarkAll
  266. Name          :  MarkAll
  267.  
  268. Function      :  Marks all lines (see same menu for details)
  269. Parameters    :  No parameters
  270. Returnvalue   :  Nothing
  271.  
  272. ***
  273. Cut
  274. Name          :  Cut
  275.  
  276. Function      :  'Cut' a marked block
  277. Parameters    :  No parameters
  278. Returnvalue   :  Nothing
  279.      
  280. ***
  281. Copy
  282. Name          :  Copy
  283.  
  284. Function      :  'Copies' a marked block
  285. Parameters    :  No parameters
  286. Returnvalue   :  Nothing
  287.      
  288. ***
  289. Delete
  290. Name          :  Delete
  291.  
  292. Function      :  Deletes all lines of a marked block
  293. Parameters    :  No parameters
  294. Returnvalue   :  Nothing
  295.      
  296. ***
  297. Paste
  298. Name          :  Paste
  299.  
  300. Function      :  See menu 'Paste Block'
  301. Parameters    :  No parameters
  302. Returnvalue   :  Nothing
  303.      
  304. ***
  305. PasteVertical
  306. Name          :  PasteVertical
  307.  
  308. Function      :  'Pastes' a vertical Block
  309. Parameters    :  No parameters
  310. Returnvalue   :  Nothing
  311.      
  312. ***
  313. BlockRight
  314. Name          :  BlockRight
  315.  
  316. Function      :  Moves a marked block one position to the right
  317. Parameters    :  No parameters
  318. Returnvalue   :  Nothing
  319.      
  320. ***
  321. BlockLeft
  322. Name          :  BlockLeft
  323.  
  324. Function      :  Moves a marked block one position to the left
  325. Parameters    :  No parameters
  326. Returnvalue   :  Nothing
  327.      
  328. ***
  329. UnmarkBlock
  330. Name          :  UnmarkBlock
  331.  
  332. Function      :  Unmarks a block
  333. Parameters    :  No parameters
  334. Returnvalue   :  Nothing
  335.      
  336. ***
  337. InsertBlock
  338. Name          :  InsertBlock
  339.  
  340. Function      :  Opens a filerequester, to load a saved block
  341. Parameters    :  No parameters
  342. Returnvalue   :  Nothing
  343.      
  344. ***
  345. PrintBlock
  346. Name          :  PrintBlock
  347.  
  348. Function      :  Sends a marked block to the printer
  349. Parameters    :  No parameters
  350. Returnvalue   :  0 if successful, else 10
  351.      
  352. ***
  353. SaveBlock
  354. Name          :  SaveBlock
  355.  
  356. Function      :  Opens a filerequester, to save a block
  357. Parameters    :  No parameters
  358. Returnvalue   :  Nothing
  359.  
  360. ***
  361. Foldmarked
  362. Name          :  Foldmarked
  363.  
  364. Function      :  Folds a marked block
  365. Parameters    :  No parameters
  366. Returnvalue   :  Nothing
  367.  
  368. ***
  369. Fold
  370. Name          :  Fold
  371.  
  372. Function      :  Folds all possible parts of a text (seem menu)
  373. Parameters    :  No parameters
  374. Returnvalue   :  Nothing
  375.  
  376. ***
  377. Unfold
  378. Name          :  Unfold
  379.  
  380. Function      :  Unfolds all folded text
  381. Parameters    :  No parameters
  382. Returnvalue   :  Nothing
  383.  
  384. ***
  385. FoldNext
  386. Name          :  FoldNext
  387.  
  388. Function      :  Folds next possible part of a text
  389. Parameters    :  No parameters
  390. Returnvalue   :  Nothing
  391.  
  392.  20. UnFoldNext
  393.      -Unfolds next folding of a text
  394.      -No parameters
  395.      -Nothing
  396.  
  397. ***
  398. SetFoldOn
  399. Name          :  SetFoldOn
  400.  
  401. Function      :  Sets the keyword for the beginning of a folding
  402. Parameters    :  The new keyword
  403. Returnvalue   :  Nothing
  404.  
  405. ***
  406. SetFoldOff
  407. Name          :  SetFoldOff
  408.  
  409. Function      :  Sets the keyword for the end of a folding
  410. Parameters    :  New keyword
  411. Returnvalue   :  Nothing
  412.      
  413. ***
  414. PreviousPage
  415. Name          :  PreviousPage
  416.  
  417. Function      :  Goes to the previous page
  418. Parameters    :  No parameters
  419. Returnvalue   :  Nothing
  420.      
  421. ***
  422. NextPage
  423. Name          :  NextPage
  424.  
  425. Function      :  Goes to the next page 
  426. Parameters    :  No parameters
  427. Returnvalue   :  Nothing
  428.      
  429. ***
  430. BeginOfFile
  431. Name          :  BeginOfFile
  432.  
  433. Function      :  Goes to the very first character of a text
  434. Parameters    :  No parameters
  435. Returnvalue   :  Nothing
  436.      
  437. ***
  438. EndOfFile
  439. Name          :  EndOfFile
  440.  
  441. Function      :  Goes to the end of the text
  442. Parameters    :  No parameters
  443. Returnvalue   :  Nothing
  444.    
  445. ***
  446. BeginOfLine
  447. Name          :  BeginOfLine
  448.  
  449. Function      :  Goes to the very first character of a line
  450. Parameters    :  No parameters
  451. Returnvalue   :  Nothing
  452.      
  453. ***
  454. EndOfLine
  455. Name          :  EndOfLine
  456.  
  457. Function      :  Goes to the right end of a line
  458. Parameters    :  No parameters
  459. Returnvalue   :  Nothing
  460.      
  461. ***
  462. GotoLine
  463. Name          :  GotoLine
  464.  
  465. Function      :  Goes to a line
  466. Parameters    :  Number of the line
  467. Returnvalue   :  0 if successful, else 10
  468.      
  469. ***
  470. GotoColumn              
  471. Name          :  GotoColumn              
  472.  
  473. Function      :  Goes to a column       
  474. Parameters    :  Number of the column   
  475. Returnvalue   :  0 if successful, else 10
  476.       
  477. ***
  478. NextWord
  479. Name          :  NextWord
  480.  
  481. Function      :  Goes to the next word
  482. Parameters    :  No parameters
  483. Returnvalue   :  Nothing
  484.  
  485. ***
  486. PreviousWord
  487. Name          :  PreviousWord
  488.  
  489. Function      :  Goes to the previous word
  490. Parameters    :  No parameters
  491. Returnvalue   :  Nothing
  492.  
  493. ***
  494. Cursor
  495. Name          :  Cursor
  496.  
  497. Function      :  Moves the cursor up/down/left/right
  498. Parameters    :  UP, DOWN, LEFT or RIGHT (use capital letters)
  499. Returnvalue   :  Nothing
  500.             
  501. ***
  502. Line
  503. Name          :  Line
  504.  
  505. Function      :  Moves cursor the specified number of lines up/down
  506. Parameters    :  Number of lines (e.g. 23, -45, +6)
  507. Returnvalue   :  10, if the cursor reaches the beginning/end of the text, else 0
  508.      
  509. ***
  510. Column
  511. Name          :  Column
  512.  
  513. Function      :  Moves cursor the specified number of characters to the left/right
  514. Parameters    :  Number of characters (e.g. 23, -45, +6)
  515. Returnvalue   :  10, if the cursor reaches the beginning/end of the line, else 0
  516.  
  517. ***
  518. GotoByte
  519. Name          :  GotoByte
  520.  
  521. Function      :  Jumps to the specified byte (= character). The very first 
  522.                  byte is no. 0. If the specified byte is beyond the end of 
  523.                  the text, the TKEd jumps to the very last byte in the text.
  524.                  (Remember: The not visible 'Return'-character at the end 
  525.                   of each line is also one byte)
  526. Parameters    :  Number of the byte ( >=0 )
  527. Returnvalue   :  0 if ok, else 10
  528.  
  529. ***
  530. DeleteWord
  531. Name          :  DeleteWord
  532.  
  533. Function      :  Deletes the word under the cursor
  534. Parameters    :  No parameters
  535. Returnvalue   :  Nothing
  536.      
  537. ***
  538. DeleteLine
  539. Name          :  DeleteLine
  540.  
  541. Function      :  Deletes the current line
  542. Parameters    :  No parameters
  543. Returnvalue   :  Nothing
  544.      
  545. ***
  546. DeleteToEOL
  547. Name          :  DeleteToEOL
  548.  
  549. Function      :  Deletes the current line from the position of the cursor 
  550.                  to the end of the line
  551. Parameters    :  No parameters
  552. Returnvalue   :  Nothing
  553.  
  554. ***
  555. FirstError
  556. Name          :  FirstError
  557.  
  558. Function      :  Displays the first error of an errorfile
  559. Parameters    :  If parameter = PROMPT : Shows a requester with the errormessage
  560. Returnvalue   :  Errormessage (if exist), else 10
  561.      
  562. ***
  563. NextError
  564. Name          :  NextError
  565.  
  566. Function      :  Displays the next error of an errorfile
  567. Parameters    :  If parameter = PROMPT : Shows a requester with the errormessage
  568. Returnvalue   :  Errormessage (if exist), else 10
  569.    
  570. ***
  571. FunctionKey
  572. Name          :  FunctionKey
  573.  
  574. Function      :  Executes one of the user-/ARexx-menus
  575. Parameters    :  Number 0 to 19 (F1=0 ... F10=9, Shift-F1=10 ... Shift-F10 = 19)
  576. Returnvalue   :  Nothing
  577.  
  578. ***
  579. MakeReturn
  580. Name          :  MakeReturn
  581.  
  582. Function      :  Same as pressing the 'return'-key
  583. Parameters    :  No parameters
  584. Returnvalue   :  Nothing
  585.  
  586. ***
  587. del
  588. Name          :  del
  589.  
  590. Function      :  Same as pressing the 'Del'-key
  591. Parameters    :  No parameters
  592. Returnvalue   :  Nothing
  593.  
  594. ***
  595. backspace
  596. Name          :  backspace
  597.  
  598. Function      :  Same as pressing the '<-' -key
  599. Parameters    :  No parameters
  600. Returnvalue   :  Nothing
  601.  
  602. ***
  603. GotoBuffer
  604. Name          :  GotoBuffer
  605.  
  606. Function      :  Shows the text in the specified buffer
  607. Parameters    :  Number of the buffer (0 to 9)
  608. Returnvalue   :  0 if any text is loaded, 5 if no text is loaded, 10 if 
  609.                  error
  610.  
  611. ***
  612. GetBufferNr
  613. Name          :  GetBufferNr
  614.  
  615. Function      :  Returns the number of the current buffer
  616. Parameters    :  No parameters
  617. Returnvalue   :  Number of the buffer
  618.  
  619. ***
  620. FindBuffer
  621. Name          :  FindBuffer
  622.  
  623. Function      :  Searches a buffer and goes to it (if found)
  624. Parameters    :  Name of the buffer (not case sensitive); if no name is 
  625.                  specified, TKEd switches to the next free buffer (if exist 
  626.                  any)
  627. Returnvalue   :  Number of the buffer (0..9) if found; 10 if not found
  628.      
  629. ***
  630. GetLineNr
  631. Name          :  GetLineNr
  632.  
  633. Function      :  Returns the number of the current line
  634. Parameters    :  No parameters
  635. Returnvalue   :  Number of the line
  636.      
  637. ***
  638. GetColumnNr
  639. Name          :  GetColumnNr
  640.  
  641. Function      :  Returns the number of the current column
  642. Parameters    :  No parameters
  643. Returnvalue   :  Number of the column
  644.      
  645. ***
  646. GetChar
  647. Name          :  GetChar
  648.  
  649. Function      :  Returns the character at the cursor-position
  650. Parameters    :  No parameters
  651. Returnvalue   :  1 character
  652.  
  653. ***
  654. IsChar
  655. Name          :  IsChar
  656.  
  657. Function      :  Returns whether the cursor stands on a character or not
  658. Parameters    :  No parameters
  659. Returnvalue   :  0 if character (a..z, A..Z), else 10
  660.      
  661. ***
  662. GetLine
  663. Name          :  GetLine
  664.  
  665. Function      :  Returns the text of the current line
  666. Parameters    :  No parameters
  667. Returnvalue   :  Text of the line
  668.  
  669. ***
  670. GetLineLen
  671. Name          :  GetLineLen
  672.  
  673. Function      :  Returns the length of the current line
  674. Parameters    :  No parameters
  675. Returnvalue   :  Length of the line
  676.  
  677. ***
  678. LastLine
  679. Name          :  LastLine
  680.  
  681. Function      :  Returns the number of the very last line of a text
  682. Parameters    :  No parameters
  683. Returnvalue   :  Number of the last line
  684.      
  685. ***
  686. GetFileName
  687. Name          :  GetFileName
  688.  
  689. Function      :  Returns the name of the loaded text (without path)
  690. Parameters    :  No parameters
  691. Returnvalue   :  Name of the text
  692.  
  693. ***
  694. GetPathName
  695. Name          :  GetPathName
  696.  
  697. Function      :  Returns the path to the loaded text (without name)
  698. Parameters    :  No parameters
  699. Returnvalue   :  Path of the text
  700.  
  701. ***
  702. GetFullPathName
  703. Name          :  GetFullPathName
  704.  
  705. Function      :  Returns path and name of the loaded text
  706. Parameters    :  No parameters
  707. Returnvalue   :  Full pathname of the text
  708.  
  709. ***
  710. FirstMarkedLine
  711. Name          :  FirstMarkedLine
  712.  
  713. Function      :  Returns the number of the first marked line
  714. Parameters    :  No parameters
  715. Returnvalue   :  Number of the first marked line or -1 if nothing is marked
  716.  
  717. ***
  718. Language
  719. Name          :  Language
  720.  
  721. Function      :  Returns the language used in TKEd
  722. Parameters    :  No parameters
  723. Returnvalue   :  'GERMAN' if german language is used and 'ENGLISH' if 
  724.                  english language is used 
  725.     
  726. ***
  727. WriteChar
  728. Name          :  WriteChar
  729.  
  730. Function      :  Writes down one character
  731. Parameters    :  1 character
  732. Returnvalue   :  0 if successful, else 10
  733.      
  734. ***
  735. WriteString
  736. Name          :  WriteString
  737.  
  738. Function      :  Writes down a string
  739. Parameters    :  String (up to 255 characters long)
  740. Returnvalue   :  0 if successful, else 10
  741.  
  742. ***
  743. Request1
  744. Name          :  Request1
  745.  
  746. Function      :  Opens a requester to show a text to the user
  747. Parameters    :  Text of the requester. If the keyword 'TKED' is in this 
  748.                  text, the requester will appear in the window of TKEd.
  749.                  If not, the requester will appear in the the active window. 
  750. Returnvalue   :  Nothing
  751.       
  752. ***
  753. Request2
  754. Name          :  Request2
  755.  
  756. Function      :  Opens a requester with two gadgets to show a text to the 
  757.                  user
  758. Parameters    :  Text of the requester. If the keyword 'TKED' is in this 
  759.                  text, the requester will appear in the window of TKEd.
  760.                  If not, the requester will appear in the active window. 
  761. Returnvalue   :  0 after clicking 'OK', 10 after clicking 'Cancel
  762.  
  763. ***
  764. Request3
  765. Name          :  Request3
  766.  
  767. Function      :  Opens a requester with a specified number of gadgets to
  768.                  show a text to the user
  769. Parameters    :  Text of the requester and for the gadgets. If the keyword
  770.                  'TKED' is in this text, the requester will appear in the
  771.                  window of TKEd. If not, the requester will appear in the
  772.                  active window. A call of Request3 must be in the format:
  773.                  Request3 "text|gadget1|gadget2|gadget3|...."
  774. Returnvalue   :  The rightmost gadgets returns always 0. The other gadgets
  775.                  (if exist) return from left to right 1,2,3,4,...
  776.                  -1 means error (no text passed).
  777.  
  778.  
  779. ***
  780. GetNumber
  781. Name          :  GetNumber
  782.  
  783. Function      :  Opens a requester to enter a number
  784. Parameters    :  Text at the top of the requester and the text in the window
  785.                  of the requester, e.g "text1|text2"
  786. Returnvalue   :  Number or 0 if the requester was canceled
  787.  
  788. ***
  789. GetString
  790. Name          :  GetString
  791.  
  792. Function      :  Opens a requester to enter a test. (up to 255 characters)
  793. Parameters    :  Text at the top of the requester, default Text and text
  794.                  in the window of the requester,
  795.                  e.g. "titletext|Tom Kroener|windowtext"
  796. Returnvalue   :  Text. If the requester was canceled, a '@' will be appended
  797.                  to the default text.
  798.  
  799. ***
  800. Beep
  801. Name          :  Beep
  802.  
  803. Function      :  Makes a 'beep' to signal the user 
  804. Parameters    :  No parameters
  805. Returnvalue   :  Nothing
  806.  
  807. ***
  808. DisplayBeep
  809. Name          :  DisplayBeep
  810.  
  811. Function      :  Makes a 'Displaybeep' to signal the user
  812. Parameters    :  No parameters
  813. Returnvalue   :  Nothing
  814.  
  815. ***
  816. MakeTitle
  817. Name          :  MakeTitle
  818.  
  819. Function      :  Display a text (for a short time) in the titlebar of TKEd
  820. Parameters    :  Text to display
  821. Returnvalue   :  Nothing
  822.  
  823. ***
  824. JoinLines
  825. Name          :  JoinLines
  826.  
  827. Function      :  Joins the current line with the previous line
  828. Parameters    :  No parameters
  829. Returnvalue   :  Nothing 
  830.  
  831. ***
  832. CloneLine
  833. Name          :  CloneLine
  834.  
  835. Function      :  Makes a duplicate of the current line
  836. Parameters    :  No parameters
  837. Returnvalue   :  Nothing
  838.  
  839. ***
  840. SwapChars
  841. Name          :  SwapChars
  842.  
  843. Function      :  Swaps to characters
  844. Parameters    :  No parameters
  845. Returnvalue   :  Nothing
  846.      
  847. ***
  848. SwapCase
  849. Name          :  SwapCase
  850.  
  851. Function      :  See same menu
  852. Parameters    :  No parameters
  853. Returnvalue   :  Nothing
  854.      
  855. ***
  856. UpperCase
  857. Name          :  UpperCase
  858.  
  859. Function      :  Changes the character under the cursor from lowercase to uppercase
  860. Parameters    :  No parameters
  861. Returnvalue   :  Nothing
  862.  
  863. ***
  864. LowerCase
  865. Name          :  LowerCase
  866.  
  867. Function      :  Changes the character under the cursor from uppercase to lowercase
  868. Parameters    :  No parameters
  869. Returnvalue   :  Nothing
  870.  
  871. ***
  872. EnterAscii
  873. Name          :  EnterAscii
  874.  
  875. Function      :  Writes down the ASCII-character belonging to the number
  876. Parameters    :  ASCII-number of the character  (0 < number < 256)
  877. Returnvalue   :  0 if successful, else 10
  878.      
  879. ***
  880. TKEdtoFront
  881. Name          :  TKEdtoFront
  882.  
  883. Function      :  Pushes the screen of TKEd to the front
  884. Parameters    :  No parameters
  885. Returnvalue   :  Nothing
  886.      
  887. ***
  888. TKEdtoBack
  889. Name          :  TKEdtoBack
  890.  
  891. Function      :  Pushes the screen of TKEd to the back
  892. Parameters    :  No parameters
  893. Returnvalue   :  Nothing
  894.  
  895. ***
  896. WBtoFront
  897. Name          :  WBtoFront
  898.  
  899. Function      :  Pushes the workbenchscreen to the front
  900. Parameters    :  No parameters
  901. Returnvalue   :  0 if possible, else 10
  902.      
  903. ***
  904. Rename
  905. Name          :  Rename
  906.  
  907. Function      :  Renames the text
  908. Parameters    :  New name for the text
  909. Returnvalue   :  Nothing
  910.  
  911. ***
  912. Delay
  913. Name          :  Delay
  914.  
  915. Function      :  Waits for the specified time
  916. Parameters    :  Time to wait in 1/50 seconds (e.g.'Delay 50' will wait for one second)
  917. Returnvalue   :  Nothing
  918.  
  919. ***
  920. Sleep
  921. Name          :  Sleep
  922.  
  923. Function      :  Makes TKEd 'sleeping' (See menu 'Sleep'). The ARREX-
  924.                  program waits as long as TKEd is sleeping; this is an 
  925.                  easy way to make one AREXX-program to wait for another: 
  926.                  The second AREXX-program only needs to send any AREXX-
  927.                  command to TKEd to 'wake up' TKEd and the first program 
  928.                  will continue.
  929. Parameters    :  No parameters
  930. Returnvalue   :  Nothing
  931.  
  932. ***
  933. StripAnsi
  934. Name          :  StripAnsi
  935.  
  936. Function      :  Remove all ANSI-codes from the current cursor position to the
  937.                  end of the text
  938. Parameters    :  No parameters
  939. Returnvalue   :  Nothing
  940.  
  941. ***
  942. WaitForKey
  943. Name          :  WaitForKey
  944.  
  945. Function      :  Wait for any key (mouse, menus etc. are ignored)
  946. Parameters    :  No parameters
  947. Returnvalue   :  Rawkey- and ASCII-value in the format value1|value2
  948.                  Example: The RETURN-key returns '68|13'
  949.                           Cursor-Up-key returns '204|0'
  950.  
  951. ***
  952. WaitForMouse
  953. Name          : WaitForMouse
  954.  
  955. Function      : Waits for pressing a mousebutton, all other inputs will be
  956.                 ignored
  957. Parameters    : Text to display i the titlebar
  958. Returnvalue   : L if left button was pressed, R else
  959.  
  960. ***
  961. Refresh
  962. Name          :  Refresh
  963.  
  964. Function      :  Refreshes TKEd's screen
  965. Parameters    :  No parameters
  966. Returnvalue   :  Nothing
  967.  
  968.